From 08006b1a9140366df558ab1338839b11cb136ddd Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Mon, 28 Nov 2005 12:21:17 +0000 Subject: [PATCH] Use StringIO to simplify string_iterator here. Altered the up-front documentation. Signed-off-by: Ewan Mellor --- tools/python/xen/util/bugtool.py | 37 +++++++++----------------------- 1 file changed, 10 insertions(+), 27 deletions(-) diff --git a/tools/python/xen/util/bugtool.py b/tools/python/xen/util/bugtool.py index 290ca4df0c..5c4ffc87b0 100644 --- a/tools/python/xen/util/bugtool.py +++ b/tools/python/xen/util/bugtool.py @@ -22,6 +22,7 @@ import httplib import re import os import os.path +import StringIO import sys import tarfile import tempfile @@ -53,12 +54,16 @@ def main(argv = None): print ''' This application will collate the Xen dmesg output, details of the hardware configuration of your machine, information about the build of Xen that you are -using, plus, if you allow it, various logs. These logs may contain private -information, and if you are at all worried about that, you should exit now. +using, plus, if you allow it, various logs. The information collated can either be posted to a Xen Bugzilla bug (this bug must already exist in the system, and you must be a registered user there), or it can be saved as a .tar.bz2 for sending or archiving. + +The collated logs may contain private information, and if you are at all +worried about that, you should exit now, or you should explicitly exclude +those logs from the archive. + ''' bugball = [] @@ -201,35 +206,13 @@ def prettyDict(d): return '\n'.join([format % i for i in d.items()]) + '\n' -class string_iterator: +class string_iterator(StringIO.StringIO): def __init__(self, name, val): + StringIO.StringIO.__init__(self, val) self.name = name - self.val = val - self.vallist = val.splitlines(True) - self.line = 0 - - def readlines(self): - return self.vallist - - def readline(self): - result = self.vallist[line] - line += 1 - return result - - def read(self, n = None): - if n is None: - return self.val - else: - return self.val[0:n] - - def close(self): - pass def size(self): - return len(self.val) - - def seek(self, _1, _2 = None): - pass + return len(self.getvalue()) def yes(prompt): -- 2.30.2